select max(cnt) from
(select counr(*) as  from room group by hotelno);

select * from room group by hotelno having count(*) = 5;


select count(*), hotelno from room group by hotelno having count(*) =
	(select max(cnt) from (select count(*) as cnt from group by hotelno));
